home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 003 / db2ios.arc / SHIPDOC.SIG < prev    next >
Encoding:
Text File  |  1983-01-04  |  3.1 KB  |  118 lines

  1. * shipdoc.sig 08/27/83
  2. ERASE
  3. STORE DATE() TO stdat
  4. * get a starting  point
  5. STORE DATE() TO stdat
  6. @ 18,12 SAY 'Orders after what date require shipping documents'
  7. @ 18,60 GET stdat PICTURE '99/99/99'
  8. READ
  9. STORE $(stdat,7,2)+$(stdat,1,2)+$(stdat,4,2) TO stdate
  10. GOTO TOP
  11. STORE t TO more
  12. SET FORMAT TO PRINT
  13. SET MARGIN TO 0
  14. ? CHR(29)
  15. SET CONSOLE OFF
  16. DO WHILE more
  17. IF .NOT. EOF
  18. STORE $(dayu,7,2)+$(dayu,1,2)+$(dayu,4,2) TO stdate1
  19. IF stdate1 >= stdate
  20. @ 1,10 SAY 'SIG/M SOFTWARE - BOX 97 - ISELIN, NJ 08830'
  21. @ 3,6 SAY 'ORDER NUMBER'
  22. @ 3,19 SAY ':'
  23. @ 3,20 SAY ORDER
  24. @ 3,42 SAY 'Complete'
  25. @ 3,51 SAY ':'
  26. @ 3,52 SAY COMP
  27. @ 5,9 SAY 'Last name'
  28. @ 5,19 SAY ':'
  29. @ 5,20 SAY LNAME
  30. @ 5,45 SAY 'First'
  31. @ 5,51 SAY ':'
  32. @ 5,52 SAY FNAME
  33. @ 7,11 SAY 'Address'
  34. @ 7,19 SAY ':'
  35. @ 7,20 SAY ADDR1
  36. @ 8,10 SAY '(line 2)'
  37. @ 8,19 SAY ':'
  38. @ 8,20 SAY ADDR2
  39. @ 9,10 SAY '(line 3)'
  40. @ 9,19 SAY ':'
  41. @ 9,20 SAY ADDR3
  42. @ 10,14 SAY 'City'
  43. @ 10,19 SAY ':'
  44. @ 10,20 SAY CITY
  45. @ 10,48 SAY 'ST'
  46. @ 10,51 SAY ':'
  47. @ 10,52 SAY STATE
  48. @ 10,67 SAY 'Zip'
  49. @ 10,71 SAY ':'
  50. @ 10,72 SAY ZIP
  51. @ 13,3 SAY 'Volumes'
  52. @ 13,11 SAY ':'
  53. @ 13,12 SAY VOL1
  54. @ 16,4 SAY 'Amount'
  55. @ 16,11 SAY ':'
  56. @ 16,12 SAY AMT USING '$999.99'
  57. @ 16,23 SAY 'Ordered'
  58. @ 16,31 SAY ':'
  59. @ 16,51 SAY ':'
  60. @ 16,52 SAY ENTERED
  61. @ 16,62 SAY 'Shipped'
  62. @ 16,70 SAY ':'
  63. @ 16,71 SAY SHIPPED
  64. @ 17,43 SAY 'Catalog'
  65. @ 17,51 SAY ':'
  66. @ 17,52 SAY CATALOG
  67. @ 18,3 SAY 'Remarks'
  68. @ 18,11 SAY ':'
  69. @ 18,12 SAY REM1
  70. @ 19,3 SAY 'Remarks'
  71. @ 19,11 SAY ':'
  72. @ 19,12 SAY REM2
  73. @ 20,1 SAY 'Backorder'
  74. @ 20,11 SAY ':'
  75. @ 20,12 SAY BO
  76. @ 22,01 SAY 'Backorder shipped'
  77. @ 22,19 SAY ':'
  78. @ 22,20 SAY BO:SHIP
  79. @ 22,40 SAY 'Backorder shipped'
  80. @ 22,58 SAY ':'
  81. @ 22,59 SAY BO2:SHIP
  82. @ 24,10 SAY "BACKORDERED VOLUMES WILL BE SHIPPED SEPARATELY"
  83. @ 25,1 SAY '* * * * * * * * * * * * * * * * * * *'
  84. @ 25,40 SAY '* * * * * * * * * * * * * * * * * *'
  85. @ 27,0 SAY 'SIG/M MAIL ORDER RATES'
  86. @ 28,0 SAY 'Domestic(US & Canada):  $5/volume + $1/order for shipping (UPS)'
  87. @ 29,0 SAY ' Foreign: $9 = $6/volume + $3/disk for shipping (AIR MAIL)'
  88. @ 31,0 SAY '[  ] Your payment was not sufficient to complete your order. The balance of'
  89. @ 32,0 SAY '     your order of $____________ will be applied to your next order if you'
  90. @ 33,0 SAY '     return this form with your order.'
  91. @ 35,0 SAY '[  ] You have overpaid for your order.'
  92. @ 36,0 SAY '     [   ] We are sending additional volumes since it looks like you are'
  93. @ 37,0 SAY '           getting the complete library.'
  94. @ 39,0 SAY '     [   ] You overpaid  $__________. It be applied to your next'
  95. @ 40,0 SAY '           order if you return this form with your order.'
  96. @ 42,0 SAY '[  ] We are returning your blank disks. We only copy  to'
  97. @ 43,0 SAY '     member supplied disks at User Group meetings.Because'
  98. @ 44,0 SAY '     of high shipping costs, we charged your account $______'
  99. @ 45,0 SAY '     for return shipping. '
  100. @ 47,0 SAY '[  ] Other:'
  101. @ 50,20 SAY 'Many thanks for your order from SIG/M SOFTWARE'
  102. @ 51,40 SAY DATE()
  103. EJECT
  104. SKIP
  105. ELSE
  106. SKIP
  107. ENDIF $date
  108. ELSE
  109. STORE f TO more
  110. ENDIF not EOF
  111. ENDDO more
  112. EJECT
  113. ? CHR(30)
  114. SET FORMAT TO SCREEN
  115. RELEASE all
  116. STORE t TO more
  117. STORE t TO first
  118.